home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 12
/
CU Amiga Magazine's Super CD-ROM 12 (1997)(EMAP Images)(GB)[!][issue 1997-07].iso
/
CUCD
/
Games
/
DestructivePoker
/
sources
/
sources.lha
/
dealpile.h
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-20
|
505b
|
30 lines
/*
dealpile.h
V1.00 - 151096 Kimmo Teräväinen
----- ------ ----------------
V0.01 201196 Started from junkpile.h
V0.10 130297 Ready, also srand called.
*/
#ifndef DC1_POKER_DEALPILE
#define DC1_POKER_DEALPILE
#include <time.h>
#include <stdlib.h>
#include "cardpile.h"
class cDealPile : public cCardPile {
public:
cDealPile(int lkm=52,int x=20,int y=50) : cCardPile(lkm,x,y)
{
srand(clock());
}
void Shuffle();
void Lift();
};
#endif